home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / MEDICAL / H121A.ZIP / WIPE_E5.BAT < prev   
DOS Batch File  |  1991-07-15  |  670b  |  29 lines

  1. echo off
  2. if not exist \epi5\nul goto wrong_disk
  3. cd\epi5
  4. echo  
  5. echo Warning! This will delete all *.EXE, *.OVR, *.HLP, *.BGI,
  6. echo *.CHR, *.PDF, *.EPA, TUTOR*.* and USER?.TXT files
  7. echo in this directory! If this is not OK, then press Ctrl-C or
  8. echo Ctrl-Break now or press any other key and answer Y when prompted:
  9. echo  
  10. pause
  11. cd\epi5
  12. del *.exe
  13. del *.ovr
  14. del *.bgi
  15. del *.hlp
  16. del *.pdf
  17. del *.chr
  18. del *.epa
  19. del tutor*.*
  20. del user?.txt
  21. goto end
  22. :wrong_disk
  23. echo  
  24. echo This batch file must be run from the disk where the \EPI5
  25. echo directory is located. (If you don't have a \EPI5 directory,
  26. echo you don't need to run this file.)
  27. echo  
  28. :end
  29.